Skip to content

DEVOPS-1131: Use ref_name and add release tag validation in python_deploy_prod.yml - #92

Merged
sebhmg merged 2 commits into
developfrom
DEVOPS-1131
Sep 2, 2026
Merged

DEVOPS-1131: Use ref_name and add release tag validation in python_deploy_prod.yml#92
sebhmg merged 2 commits into
developfrom
DEVOPS-1131

Conversation

@RomFloreani

@RomFloreani RomFloreani commented Aug 26, 2026

Copy link
Copy Markdown
Contributor

DEVOPS-1131 - python_deploy_prod workflow to use tag from revision: no manual input
Use github.ref_name instead of workflow_dispatch input release-tag, and add a validate-release-tag job to fail fast when the workflow is not run from a tag.

Mirrors the change made in MiraGeoscience/simpeg#167.

Copilot AI lite review requested due to automatic review settings August 26, 2026 17:50

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates the production Python deploy workflow to derive the release tag from the Git reference (github.ref_name) and adds an early validation step to prevent manual runs from non-tag refs, aligning release publishing behavior with the intended release-tag source.

Changes:

  • Removed workflow_dispatch input release-tag and switched consumers to github.ref_name.
  • Added a validate-release-tag job to fail fast when manually dispatched from a non-tag ref.
  • Updated concurrency grouping and downstream reusable workflow inputs to use the resolved tag name.
Suppressed comments (1)

.github/workflows/python_deploy_prod.yml:57

  • With validate-release-tag gated to only run on workflow_dispatch, this job’s if: should also explicitly allow needs.validate-release-tag.result == 'skipped' for release events (and still require success for workflow_dispatch). Otherwise the publish job can be skipped depending on how the validation job is conditioned.
    needs: validate-release-tag
    if: ${{ github.event_name == 'release' || github.event.inputs.publish-pypi == 'true' }}

💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.

Comment thread .github/workflows/python_deploy_prod.yml
@RomFloreani
RomFloreani requested a review from sebhmg August 26, 2026 19:38
Skip the v* tag check for the release event, since the upstream draft-release
flow already enforces it, and drop the unreachable else branch since the
workflow only triggers on release and workflow_dispatch.
@github-actions

github-actions Bot commented Sep 1, 2026

Copy link
Copy Markdown

⚠️ Force push detected - Previous Copilot review comments may no longer be relevant to the current code. Please resolve any outdated threads and re-request a Copilot review when ready.

@sebhmg
sebhmg merged commit 32b3203 into develop Sep 2, 2026
17 checks passed
@sebhmg
sebhmg deleted the DEVOPS-1131 branch September 2, 2026 17:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants